WorkbookFindElementsT(PredicateT, SearchScope) Method

Returns all objects of the specified type which match the specified condition.

Definition

Namespace: Independentsoft.Office.Spreadsheet
Assembly: Independentsoft.Calc (in Independentsoft.Calc.dll) Version: 3.0.520.1+c6c593d5629a051e0af021b238c5d69d764f9686
C#
public IList<T> FindElements<T>(
	Predicate<T> match,
	SearchScope scope
)
where T : class

Parameters

match  PredicateT
The condition the objects have to match.
scope  SearchScope
The parts of the workbook to search.

Type Parameters

T
The type of the objects.

Return Value

IListT
A list of objects.

See Also